www.gusucode.com > Mobile Robotics Simulation Toolbox 工具箱matlab源码程序 > Mobile Robotics Simulation Toolbox/examples/soccer/datatypes/ObjectType.m

    classdef ObjectType < Simulink.IntEnumType
    % Enumeration datatype for Robot Soccer objects
    % Copyright 2019 The MathWorks, Inc.
    
    enumeration
        Ball(1)
        GoalpostHome(2)
        GoalpostAway(3)
    end
    
end